home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / escalant / escala21.lha / escalante2.1 / bin / gebToEscalante next >
Text File  |  1993-07-14  |  175b  |  13 lines

  1. #!/bin/sh
  2. # change identifiers
  3. #
  4. for i in $*
  5. do
  6.     echo $i
  7.     cp $i /tmp/$i
  8.     sed -e 's/Geb/Escalante/g' \
  9.         -e 's/GEB/ESCALANTE/g' \
  10.     /tmp/$i > $i
  11.     rm /tmp/$i
  12. done
  13.